Welcome![Sign In][Sign Up]
Location:
Search - alsa Linux

Search list

[Bookslinux设备驱动程序开发详解

Description: 详细讲述了linux设备驱动程序的开发,想学习linux下设备驱动程序开发工作的人员可以参考。文件清单列出如下: linuxdriver_code_tool |-- 03 | `-- 2.6内核升级工具 | |-- device-mapper-1.00.19-2.i386.rpm | |-- lvm2-2.00.25-1.01.i386.rpm | |-- mkinitrd-4.2.0.3.tar.tar | |-- module-init-tools-3.2.2.tar.bz2 | `-- modutils-2.4.5-1.src.rpm |-- 04 | |-- 内核模块参数范例 | | `-- book.c | |-- 内核模块导出符号 | | `-- export_symb.c | `-- 最简单的内核模块 | `-- hello.c |-- 05 | `-- udev源代码 | `-- udev-114.tar.gz |-- 06 | |-- globalmem驱动 | | `-- globalmem.c | `-- 包含2个globalmem设备的驱动 | `-- globalmem_two.c |-- 07 | `-- 含并发控制的globalmem驱动 | `-- globalmem_lock.c |-- 08 | |-- globalfifo驱动 | | `-- globalfifo.c | `-- poll应用程序范例 | `-- pollmonitor.c |-- 09 | |-- 异步通知应用程序范例 | | `-- asyncmonitor.c | `-- 支持异步通知的globalfifo | `-- globalfifo_async.c |-- 10 | |-- S3C2410实时钟驱动 | | `-- s3c2410-rtc.c | `-- 秒设备驱动与应用程序 | |-- second.c | `-- second_test.c |-- 11 | |-- DMA范例 | | |-- 3c505.c | | |-- 3c505.h | | `-- dma.h | `-- 静态映射范例 | `-- mach-smdk2440.c |-- 12 | |-- NVRAM驱动 | | `-- generic_nvram.c | |-- 触摸屏驱动 | | |-- 作为input设备 | | | |-- s3c2410_ts.c | | | `-- s3c2410_ts.h | | `-- 作为普通字符设备 | | `-- s3c2410-ts.c | |-- 看门狗驱动 | | `-- s3c2410_wdt.c | `-- 平台设备 | `-- devs.c |-- 13 | |-- IDE驱动 | | |-- ide-disk.c | | `-- ide-h8300.c | `-- RAMDISK驱动 | `-- rd.c |-- 14 | |-- S3C2410串口驱动 | | |-- regs-gpio.h | | |-- regs-serial.h | | `-- s3c2410.c | `-- 串口核心层 | |-- serial_core.c | `-- serial_core.h |-- 15 | |-- S3C2410 I2C主机驱动 | | |-- i2c-s3c2410.c | | |-- iic.h | | |-- regs-gpio.h | | `-- regs-iic.h | `-- SAA711x I2C设备驱动 | `-- saa711x.c |-- 16 | `-- CS8900以太网设备驱动 | |-- cs89x0.c | `-- cs89x0.h |-- 17 | |-- ALSA工具及库 | | |-- alsa-driver-1.0.15.tar.bz2 | | |-- alsa-firmware-1.0.15.tar.bz2 | | |-- alsa-lib-1.0.15.tar.bz2 | | |-- alsa-oss-1.0.15.tar.bz2 | | |-- alsa-tools-1.0.15.tar.bz2 | | |-- alsa-utils-1.0.13.tar.bz2 | | `-- pyalsa-1.0.15.tar.bz2 | |-- ALSA驱动范例 | | |-- sa11xx-uda1341.c | | `-- uda1341.h | |-- ALSA应用程序范例 | | |-- pcm.c | | `-- pcm_min.c | |-- OSS驱动范例 | | `-- s3c2410-uda1341.c | `-- OSS应用程序范例 | |-- mixer.c | `-- sound.c |-- 18 | |-- FRAMEBUFFER应用程序范例 | | `-- fb_display | | |-- fb_display.c | | |-- fb_display.h | | |-- Makefile | | |-- README | | `-- test.c | `-- S3C2410 LCD驱动 | |-- s3c2410fb.c | `-- s3c2410fb.h |-- 19 | |-- busybox源代码 | | `-- busybox-1.2.1.tar.bz2 | |-- MTD工具 | | `-- mtd-utils-1.0.0.tar.gz | |-- nand驱动范例 | | `-- s3c2410.c | |-- nor驱动范例 | | `-- s3c2410nor.c | `-- yaffs&yaffs2源代码 | |-- yaffs.tar.gz | `-- yaffs2.tar.gz |-- 20 | |-- USB串口驱动 | | |-- usb-serial.c | | `-- usb-serial.h | |-- USB工具 | | `-- usbview-1.0.tar.tar | |-- USB骨架程序 | | `-- usb-skeleton.c | |-- USB键盘驱动 | | |-- input.h | | |-- usb_input.h | | `-- usbkbd.c | `-- usb主机控制器驱动范例 | |-- ohci-s3c2410.c | `-- usb-control.h |-- 21 | |-- PCI骨架程序 | | `-- pci-skeleton.c | `-- PCI驱动范例 | `-- i810_audio.c `-- 22 |-- 范例代码 | |-- oops范例 | | |-- oops_example.asm | | `-- oops_example.c | `-- proc范例 | `-- sim_proc.c `-- 内核调试工具 |-- ddd-3.3.11.tar.gz |-- gdbmod-2.4.bz2 |-- kdb-v4.4-2.6.15-rc5-common-1.bz2 |-- kdb-v4.4-2.6.15-rc5-common-2.bz2 |-- kdb-v4.4-2.6.15-rc5-i386-1.bz2 `-- linux-2.6.15.5-kgdb-2.4.tar.tar
Platform: | Size: 25078324 | Author: zxx000 | Hits:

[Linux-Unixalsa声卡编程

Description: linux下声卡框架alsa的编程实例
Platform: | Size: 986 | Author: brotherer@126.com | Hits:

[Linux-Unixwriting-an-alsa-driver

Description: linux 下声卡驱动程序的编写-sound card driver under preparation
Platform: | Size: 235520 | Author: 中中地 | Hits:

[Software EngineeringALSA Doc

Description: linux下声卡编程,alsa声卡驱动程序集的参考文档-under linux audio programming, alsa sound card driver set of reference documents
Platform: | Size: 676864 | Author: | Hits:

[Linux-UnixALSA_APP

Description: LINUX下基于ALSA音频驱动的应用程序,可以播放PCM语音流。-LINUX-based audio driver ALSA applications can play PCM audio stream.
Platform: | Size: 6144 | Author: barrysong | Hits:

[Linux-UnixALSA

Description: linux环境下ALSA驱动范例-ALSA driver under linux example
Platform: | Size: 9216 | Author: 叶子 | Hits:

[Otherwriting-an-alsa-driver

Description: 介绍linux 如何编写 alsa音频驱动-linux alsa audio driver
Platform: | Size: 365568 | Author: 张印 | Hits:

[Linux-Unixalsa-driver-1.0.10.tar

Description: linux下的声卡驱动哦 好不容易找到的哦-sound card driver under linux Oh
Platform: | Size: 2194432 | Author: simon | Hits:

[Audio programalsa-test

Description: linux下的源码,实现了利用ALSA进行录制和播放的功能。代码很易懂适于初学-linux source code under the realized using ALSA for recording and playback functions. The code is very easy to understand is suitable for beginners
Platform: | Size: 2048 | Author: 何自强 | Hits:

[OS Developlinux-driver-demo-audio

Description: 宋宝华《Linux设备驱动开发详解》sound设备驱动及应用程序例程-Sound driver demo and aplication demo based on alsa lib, from Song Baohua s 《Linux device driver in detail》.
Platform: | Size: 32768 | Author: 蒋志峰 | Hits:

[Audio programspeaker-test

Description: alsa sound testing routine Example code to make a sound test on linux
Platform: | Size: 4096 | Author: mayank | Hits:

[Linux-Unixalsa_player.tar

Description: This is the ALSA PCM audio player., which can play raw pcm audio data. This is short reference program in C under Linux.
Platform: | Size: 583680 | Author: Karim | Hits:

[Linux-Unixalsa-lib-0.4.0.tar

Description: 这是ALSA音频驱动的应用库,与其同版本的驱动源码之前已传上了-This is the ALSA audio driver in the application library, rather than before with the version of the driver source code has been passed on the
Platform: | Size: 244736 | Author: yemingzhu | Hits:

[Embeded Linuxalsa-programming

Description: 最近一直在研究LINUX下的音频编程,发现网上相关的资料不是很多,故上传LINUX的音频架构ALSA编程的示例和教程供大家学习。-Recently has been studying audio programming under LINUX and found not a lot of relevant information online, so the structure of ALSA audio upload LINUX programming examples and tutorials for all to learn.
Platform: | Size: 27648 | Author: yexiaoyun | Hits:

[Embeded LinuxLINUX-MIDI

Description: 一个LINUX的MIDI教程,基于ALSA的示例实现,自己看了觉得不错,提供给需要的人。-A LINUX-MIDI tutorials, sample implementation based on ALSA, saw themselves feel good, available to people in need.
Platform: | Size: 37888 | Author: yexiaoyun | Hits:

[Linux-Unixlinux_sound_drivers_framework

Description: Linux Sound Driver Introduction (ALSA) It s useful for the dev to develop the Linux Sound Drivers.
Platform: | Size: 294912 | Author: jgx | Hits:

[Linux-UnixLinux-driver-development17

Description: 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第17章、Linux音频设备驱动。在Linux系统中,先后出现了音频设备的两种框架:OSS和ALSA,本节将在介绍数字音频设备及音频设备硬件接口的基础上讲解OSS和ALSA驱动的结构。17.1~17.2节讲解了音频设备及PCM、IIS和AC97硬件接口。17.3节讲解了Linux OSS音频设备驱动的组成、mixer接口、dsp接口及用户空间编程方法。17.4节讲解了Linux ALSA音频设备驱动的组成、card和组件管理、PCM设备、control接口、AC97 API及用户空间编程方法。17.5节以S3C2410通过IIS接口外接UDA1341编解码器的实例讲解了OSS驱动。17.6节以PXA255通过AC97接口外接AC97 编解码器的实例讲解了ALSA驱动。-Author: HuaQing vision embedded institute. The Linux device driver development "(08 and 09 sep TOP50) annual list of best-selling chapter 17, Linux audio device drivers. In Linux system, the audio equipment successively appeared two framework: OSS and ALSA, this section will be introduced in digital audio equipment and audio equipment and hardware interface on the basis of OSS and explain the structure of the driver ALSA. 17.1 ~ 17.2 explained audio equipment and PCM, IIS and AC97 hardware interface. Section 17.3 explained Linux OSS audio device driver s composition, mixer, DSP interface and the user interface space programming method. Section 17.4 explained Linux ALSA audio device drivers, the composition of the card and the component management, PCM equipment, control interface, AC97 API and user space programming method. Section 17.5 to S3C2410 through the IIS interface external UDA1341 codec examples to explain the OSS driver. Section 17.6 to PXA255 through the AC97 interface exter
Platform: | Size: 922624 | Author: 华清远见 | Hits:

[Embeded Linuxalsa-utils-1.0.24.2.tar

Description: 嵌入式linux开发中用于测试ALSA音频驱动的小工具,需要经过交叉编译后,生成多个二进制文件,可用于录音、播放.wav文件。-Embedded linux development ALSA audio driver for testing the gadget, to go through cross-compiled to generate multiple binary files, can be used for recording, playback. Wav files.
Platform: | Size: 1420288 | Author: 赵国栋 | Hits:

[Linux-Unixalsa-lib-1.0.25

Description: alsa linux source code
Platform: | Size: 1229824 | Author: guo | Hits:

[Linux-Unixpcm_basic

Description: alsa声卡读写接口函数,结构体配置封装,包含了打开关闭,读写等函数接口,在声卡操作的应用中,可以直接拿来使用(Alsa audio card reading and writing interface functio)
Platform: | Size: 3072 | Author: hcy2017 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 13 »

CodeBus www.codebus.net